home *** CD-ROM | disk | FTP | other *** search
- on(release){
- SDButton();
- _root.vDialog = true;
- attachMovie("_setup","wsetup",15000);
- with(wsetup)
- {
- _x = (800 - _width) / 2;
- _y = (600 - _height) / 2;
- tbR._bb._x = ((_parent.vDColor & 16711680) >> 16) * 128 / 255 + 16;
- tbG._bb._x = ((_parent.vDColor & 65280) >> 8) * 128 / 255 + 16;
- tbB._bb._x = (_parent.vDColor & 255) * 128 / 255 + 16;
- tbV._bb._x = _parent.vVolume * 64 / 100 + 16;
- if(_parent.vLevel == 1)
- {
- rN.gotoAndStop("Start");
- rE.gotoAndStop("Blank");
- rM.gotoAndStop("Blank");
- }
- else if(_parent.vLevel == 2)
- {
- rN.gotoAndStop("Blank");
- rE.gotoAndStop("Start");
- rM.gotoAndStop("Blank");
- }
- else if(_parent.vLevel == 3)
- {
- rN.gotoAndStop("Blank");
- rE.gotoAndStop("Blank");
- rM.gotoAndStop("Start");
- }
- cbAS.gotoAndStop("Blank");
- if(_parent.vBAnim)
- {
- cbBA.gotoAndStop("Start");
- }
- else
- {
- cbBA.gotoAndStop("Blank");
- }
- if(_parent.vSound)
- {
- cbS.gotoAndStop("Start");
- }
- else
- {
- cbS.gotoAndStop("Blank");
- }
- if(_parent.vLQ)
- {
- cbLQ.gotoAndStop("Start");
- }
- else
- {
- cbLQ.gotoAndStop("Blank");
- }
- }
- }
-